home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / storage / page / item.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  279 b   |  18 lines

  1. /*
  2.  * item.c --
  3.  *    POSTGRES disk item code.
  4.  */
  5.  
  6. #include "tmp/c.h"
  7.  
  8. #include "storage/item.h"
  9.  
  10. RcsId("$Header: /private/postgres/src/storage/page/RCS/item.c,v 1.4 1990/09/25 16:46:10 kemnitz Exp $");
  11.  
  12. bool
  13. ItemIsValid(item)
  14.     Item    item;
  15. {
  16.     return ((bool)PointerIsValid(item));
  17. }
  18.